home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1993…ch: Other People's Memory / ADC Developer CD (1993-03) (''Other People's Memory'')_iso / Dev.CD Mar 93.iso / Development Platforms / Apple II / Essentials / MPW IIGS Interfaces / PIIGSIncludes / GSBug.p < prev    next >
Encoding:
Text File  |  1991-10-28  |  510 b   |  30 lines  |  [TEXT/MPS ]

  1. {********************************************
  2. ; File: GSBug.p
  3. ;
  4. ;
  5. ; Copyright Apple Computer, Inc. 1990-91
  6. ; All Rights Reserved
  7. ;
  8. ********************************************}
  9.  
  10. UNIT GSBUG;
  11.  
  12. INTERFACE
  13.  
  14. USES TYPES;
  15.  
  16. CONST
  17. { DebugGetInfo selectors }
  18. dgiProgramCounter = 0;
  19.  
  20. FUNCTION DebugVersion: integer;
  21. FUNCTION DebugStatus: BOOLEAN;
  22. PROCEDURE DebugStr(s:Str255);
  23. PROCEDURE SetMileStone(s:Str255);
  24. PROCEDURE DebugSetHook(p:VoidProcPtr);
  25. FUNCTION DebugGetInfo(selector:integer): longint;
  26.  
  27. IMPLEMENTATION
  28.  
  29. END.
  30.